home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / MultiThreadContainer.h,v < prev    next >
Text File  |  1988-12-20  |  800b  |  54 lines

  1. head     3.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 3.1
  10. date     88.12.20.13.50.07;  author grunwald;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 3.1
  21. log
  22. @Steay version
  23. @
  24. text
  25. @// This may look like C code, but it is really -*- C++ -*-
  26. // 
  27. // Copyright (C) 1988 University of Illinois, Urbana, Illinois
  28. //
  29. // written by Dirk Grunwald (grunwald@@cs.uiuc.edu)
  30. //
  31. #ifndef MultiThreadContainer_h
  32. #define MultiThreadContainer_h
  33.  
  34. #include "Awesime.h"
  35.  
  36. class Thread;
  37.  
  38. class ThreadContainer : public Awesime {
  39.     public :
  40.  
  41.     ThreadContainer(bool xdebug = 0);
  42.  
  43.     virtual void add( Thread*, when );
  44.     virtual Thread* remove();
  45.     virtual Thread* remove(Thread* toRemove);
  46.  
  47.     virtual bool isEmpty();
  48.     virtual unsigned size();
  49.  
  50. };
  51.  
  52. #endif MultiThreadContainer_h
  53. @
  54.